100 |
How can I change the background color for parts of the text
|
99 |
How can I change the foreground color for parts of the text
|
98 |
How can I show the node as strikeout
|
97 |
How can I show the node as underlined
|
96 |
How can I show the node as italic
|
95 |
How can I bold the node
|
94 |
How can I change the node's caption
|
93 |
How can I display hierarchical the child nodes so they are indented relative to their parents
With AxChartView1 .HasButtons = EXORGCHARTLib.ExpandButtonEnum.exPlus .PenLink = EXORGCHARTLib.PenTypeEnum.exPenSolid .PenWidthLink = 3 .IndentSiblingX = 12 .IndentSiblingY = 12 .Root.Image = 0 With .Nodes .Add("As <b>Tree</b>",Nothing,"1234").ArrangeSiblingNodesAs = EXORGCHARTLib.ArrangeSiblingEnum.exTree .Add("Sub 1","1234") .Add("Sub 2","1234","456") .Add("Item 1","456") .Add("Item 2","456","78").Expanded = False .Add("Item 2.1","78") .Add("Item 2.2","78") .Add("Item 3","456") .Add("Sub 3","1234") .Add("As <b>Default</b>",Nothing,"AA") .Add("Item 1","AA") .Add("Item 2","AA","BB") .Add("Item 2.1","BB") .Add("Item 2.2","BB") .Add("Item 2.3","BB") .Add("Item 3","AA") End With End With |
92 |
How can I display the child nodes as a tree, so they are indented relative to their parents
With AxChartView1 .IndentSiblingY = 4 .HasButtons = EXORGCHARTLib.ExpandButtonEnum.exPlus With .Root .Image = 0 .ArrangeSiblingNodesAs = EXORGCHARTLib.ArrangeSiblingEnum.exTree End With With .Nodes .Add("Child 1",Nothing,"1234") .Add("Sub 1","1234") .Add("Sub 2","1234","456") .Add("Item 1","456") .Add("Item 2","456","78").Expanded = False .Add("Item 2.1","78") .Add("Item 2.2","78") .Add("Item 3","456") .Add("Sub 3","1234") .Add("Child 2") End With End With |
91 |
How can I indent the child nodes relative to their parents
With AxChartView1 .IndentChild = 32 .HasButtons = EXORGCHARTLib.ExpandButtonEnum.exPlus .Root.Image = 0 With .Nodes .Add("AsTree",Nothing,"1234").ArrangeSiblingNodesAs = EXORGCHARTLib.ArrangeSiblingEnum.exTree .Add("Sub 1","1234") .Add("Sub 2","1234","456") .Add("Item 1","456") .Add("Item 2","456","78").Expanded = False .Add("Item 2.1","78") .Add("Item 2.2","78") .Add("Item 3","456") .Add("Sub 3","1234") .Add("Child 2",Nothing,"AA") .Add(1,"AA") .Add(2,"AA","BB") .Add("2.1","BB") .Add("2.2","BB") .Add(3,"AA") End With End With |
90 |
How can I increase the distance between nodes
|
89 |
How can I increase the distance between nodes
|
88 |
How can I add an anchor or a hyperlink
With AxChartView1 .Root.Image = 0 With .Nodes .Add("<a1>Link 1</a>",Nothing,"1234") .Add("Sub <a1>Link 1</a>","1234") .Add("Sub 2","1234") .Add("Sub 3","1234") .Add("<a2>Link 2</a>") End With End With |
87 |
Can I change the visual effect, appearance for the anchor, hyperlink elements, in HTML captions, after the user clicks it
With AxChartView1 .set_FormatAnchor(False,"<u><fgcolor=880000> </fgcolor></u>") .Root.Image = 0 With .Nodes .Add("<a1>Link 1</a>",Nothing,"1234") .Add("Sub <a1>Link 1</a>","1234") .Add("Sub 2","1234") .Add("Sub 3","1234") .Add("<a2>Link 2</a>") End With End With |
86 |
Can I change the visual effect, appearance for the anchor, hyperlink elements, in HTML captions
With AxChartView1 .set_FormatAnchor(True,"<u><fgcolor=FF0000> </fgcolor></u>") .Root.Image = 0 With .Nodes .Add("<a1>Link 1</a>",Nothing,"1234") .Add("Sub <a1>Link 1</a>","1234") .Add("Sub 2","1234") .Add("Sub 3","1234") .Add("<a2>Link 2</a>") End With End With |
83 |
How can I assign multiple icons to a node
With AxChartView1 .Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" & _ "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" & _ "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" & _ "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=") .set_HTMLPicture("pic1","c:\exontrol\images\zipdisk.gif") .Root.Image = 0 With .Nodes .Add("Child <b>1</b>",Nothing,"1234") .Add("Sub 1","1234").Caption = "<img>1</img> text <img>2</img> and so on<br>bla <b>bla</b> left<r><img>3</img>" With .Add("Sub 2","1234") .Caption = "<img>pic1</img> text <img>1:6</img><img>1:6</img><img>1</img> <img>2</img>" .FixedWidth = 124 .FixedHeight = 48 End With .Add("Sub 3","1234") .Add("Child <b>2</b>") End With End With |
82 |
How can I assign multiple pictures to a node
With AxChartView1 .set_HTMLPicture("pic1","c:\exontrol\images\zipdisk.gif") .set_HTMLPicture("pic2","c:\exontrol\images\auction.gif") With .Root .Image = 0 .AddAssistant("Assistant 1") .AddAssistant("Assistant 2") End With With .Nodes .Add("Child <b>1</b>",Nothing,"1234") With .Add("Sub 1","1234") .Caption = "<img>pic1</img> text <img>pic2</img>" .FixedWidth = 108 .FixedHeight = 48 End With .Add("Sub 2","1234") .Add("Sub 3","1234") .Add("Child <b>2</b>") End With End With |
81 |
How can I change the color of the line that links assistant nodes
With AxChartView1 .LinkAssistantColor = RGB(255,0,0) With .Root .Image = 0 .AddAssistant("Assistant 1") .AddAssistant("Assistant 2") End With With .Nodes .Add("Child <b>1</b>",Nothing,"1234") .Add("Sub 1","1234") .Add("Sub 2","1234") .Add("Sub 3","1234") .Add("Child <b>2</b>") End With End With |
80 |
How can I change the width of the line that links assistant nodes
With AxChartView1 .PenLinkAssistant = EXORGCHARTLib.PenTypeEnum.exPenSolid .PenWidthLinkAssistant = 4 With .Root .Image = 0 .AddAssistant("Assistant 1") .AddAssistant("Assistant 2") End With With .Nodes .Add("Child <b>1</b>",Nothing,"1234") .Add("Sub 1","1234") .Add("Sub 2","1234") .Add("Sub 3","1234") .Add("Child <b>2</b>") End With End With |
79 |
How can I change the style of the line that links assistant nodes
|
78 |
How can I change the shape of the cursor when it hovers the +/- or expand/collapse buttons
With AxChartView1 .set_Cursor(EXORGCHARTLib.ClientAreaEnum.exExpandButtonArea,"exHelp") .HasButtons = EXORGCHARTLib.ExpandButtonEnum.exPlus With .Root .Image = 0 .AddAssistant("Assistant 1") .AddAssistant("Assistant 2") End With With .Nodes .Add("Child <b>1</b>",Nothing,"1234").Expanded = False .Add("Sub 1","1234") .Add("Sub 2","1234") .Add("Sub 3","1234") .Add("Child <b>2</b>") End With End With |
77 |
How do I change the shape of the cursor when the user clicks an drags the chart
With AxChartView1 .set_Cursor(EXORGCHARTLib.ClientAreaEnum.exDragChart,"exHelp") With .Root .Image = 0 .AddAssistant("Assistant 1") .AddAssistant("Assistant 2") End With With .Nodes .Add("Child <b>1</b>",Nothing,"1234").Expanded = False .Add("Sub 1","1234") .Add("Sub 2","1234") .Add("Sub 3","1234") .Add("Child <b>2</b>") End With End With |
76 |
How do I change the shape of the cursor when it hovers a node
With AxChartView1 .set_Cursor(EXORGCHARTLib.ClientAreaEnum.exNodeArea,"exHelp") With .Root .Image = 0 .AddAssistant("Assistant 1") .AddAssistant("Assistant 2") End With With .Nodes .Add("Child <b>1</b>",Nothing,"1234").Expanded = False .Add("Sub 1","1234") .Add("Sub 2","1234") .Add("Sub 3","1234") .Add("Child <b>2</b>") End With End With |
75 |
How do I change the shape of the cursor when it hovers the chart
With AxChartView1 .set_Cursor(EXORGCHARTLib.ClientAreaEnum.exChartArea,"exHelp") With .Root .Image = 0 .AddAssistant("Assistant 1") .AddAssistant("Assistant 2") End With With .Nodes .Add("Child <b>1</b>",Nothing,"1234").Expanded = False .Add("Sub 1","1234") .Add("Sub 2","1234") .Add("Sub 3","1234") .Add("Child <b>2</b>") End With End With |
74 |
How can I copy and paste the control's content to Microsoft Word for instance
With AxChartView1 .HasButtons = EXORGCHARTLib.ExpandButtonEnum.exPlus .PenLink = EXORGCHARTLib.PenTypeEnum.exPenSolid .PenWidthLink = 3 With .Root .Image = 0 .AddAssistant("Assistant 1") .AddAssistant("Assistant 2") End With With .Nodes .Add("Child <b>1</b>",Nothing,"1234").Expanded = False .Add("Sub 1","1234") .Add("Sub 2","1234") .Add("Sub 3","1234") .Add("Child <b>2</b>") End With End With |
73 |
How can I copy and paste the control's content to Microsoft Word for instance
|
72 |
How can I enable or disable expanding or collapsing a node when user double clicks it
With AxChartView1 .ExpandOnDblClk = False .HasButtons = EXORGCHARTLib.ExpandButtonEnum.exPlus .ButtonsAlign = EXORGCHARTLib.PictureDisplayEnum.MiddleRight With .Root .Image = 0 .AddAssistant("Assistant 1") .AddAssistant("Assistant 2") End With With .Nodes .Add("Child <b>1</b>",Nothing,"1234").Expanded = False .Add("Sub 1","1234") .Add("Sub 2","1234") .Add("Sub 3","1234") .Add("Child <b>2</b>") End With End With |
71 |
How can I align the +/- expand or collapse buttons to the right
With AxChartView1 .HasButtons = EXORGCHARTLib.ExpandButtonEnum.exPlus .ButtonsAlign = EXORGCHARTLib.PictureDisplayEnum.MiddleRight With .Root .Image = 0 .AddAssistant("Assistant 1") .AddAssistant("Assistant 2") End With With .Nodes .Add("Child <b>1</b>",Nothing,"1234").Expanded = False .Add("Sub 1","1234") .Add("Sub 2","1234") .Add("Sub 3","1234") .Add("Child <b>2</b>") End With End With |
70 |
Can I display the +/- expand or collapse buttons using your EBN files
With AxChartView1 With .VisualAppearance .Add(11,"c:\exontrol\images\normal.ebn") .Add(22,"c:\exontrol\images\pushed.ebn") .Add(1,"CP:11 2 2 -2 -2") .Add(2,"CP:22 2 2 -2 -2") End With .HasButtons = EXORGCHARTLib.ExpandButtonEnum.exCustom .set_HasButtonsCustom(True,33554432) .set_HasButtonsCustom(False,16777216) With .Root .Image = 0 .AddAssistant("Assistant 1") .AddAssistant("Assistant 2") End With With .Nodes .Add("Child <b>1</b>",Nothing,"1234").Expanded = False .Add("Sub 1","1234") .Add("Sub 2","1234") .Add("Sub 3","1234") .Add("Child <b>2</b>") End With End With |
69 |
How can I change the +/- expand or collapse buttons
With AxChartView1 .Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" & _ "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" & _ "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" & _ "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=") .HasButtons = EXORGCHARTLib.ExpandButtonEnum.exCustom .set_HasButtonsCustom(True,1) .set_HasButtonsCustom(False,2) With .Root .Image = 0 .AddAssistant("Assistant 1") .AddAssistant("Assistant 2") End With With .Nodes .Add("Child <b>1</b>",Nothing,"1234").Expanded = False .Add("Sub 1","1234") .Add("Sub 2","1234") .Add("Sub 3","1234") .Add("Child <b>2</b>") End With End With |
68 |
How can I change the +/- expand or collapse buttons
With AxChartView1 .HasButtons = EXORGCHARTLib.ExpandButtonEnum.exCircle With .Root .Image = 0 .AddAssistant("Assistant 1") .AddAssistant("Assistant 2") End With With .Nodes .Add("Child <b>1</b>",Nothing,"1234").Expanded = False .Add("Sub 1","1234") .Add("Sub 2","1234") .Add("Sub 3","1234") .Add("Child <b>2</b>") End With End With |
67 |
How can I display +/- expand or collapse buttons
With AxChartView1 .HasButtons = EXORGCHARTLib.ExpandButtonEnum.exPlus With .Root .Image = 0 .AddAssistant("Assistant 1") .AddAssistant("Assistant 2") End With With .Nodes .Add("Child <b>1</b>",Nothing,"1234").Expanded = False .Add("Sub 1","1234") .Add("Sub 2","1234") .Add("Sub 3","1234") .Add("Child <b>2</b>") End With End With |
66 |
How do I show or hide the assistant nodes
With AxChartView1 .ShowAssistants = True With .Root .Image = 0 .AddAssistant("Assistant 1") .AddAssistant("Assistant 2") End With With .Nodes .Add("Child <b>1</b>",Nothing,"1234") .Add("Sub 1","1234") .Add("Sub 2","1234") .Add("Sub 3","1234") .Add("Child <b>2</b>") End With End With |
65 |
How do I scale or zoom the chart
With AxChartView1 .BorderWidth = 18 .BorderHeight = 18 .ZoomWidthMode = EXORGCHARTLib.ZoomModeEnum.exCustomSize .ZoomHeightMode = EXORGCHARTLib.ZoomModeEnum.exCustomSize .ZoomWidth = 2 .ZoomHeight = 2 .Root.Image = 0 With .Nodes .Add("Child <b>1</b>",Nothing,"1234") .Add("Sub 1","1234") .Add("Sub 2","1234") .Add("Sub 3","1234") .Add("Child <b>2</b>") End With End With |
64 |
How do I scale or zoom the chart
With AxChartView1 .BorderWidth = 18 .BorderHeight = 18 .ZoomWidthMode = EXORGCHARTLib.ZoomModeEnum.exControlSize .ZoomHeightMode = EXORGCHARTLib.ZoomModeEnum.exControlSize .Root.Image = 0 With .Nodes .Add("Child <b>1</b>",Nothing,"1234") .Add("Sub 1","1234") .Add("Sub 2","1234") .Add("Sub 3","1234") .Add("Child <b>2</b>") End With End With |
63 |
How can I ensure that the selected node is visible or fits the chart's area
With AxChartView1 .EnsureVisibleOnSelect = True .ScrollOnEnsure = False .BorderWidth = 18 .BorderHeight = 18 .ZoomWidthMode = EXORGCHARTLib.ZoomModeEnum.exCustomSize .ZoomHeightMode = EXORGCHARTLib.ZoomModeEnum.exCustomSize .ZoomWidth = 2 .ZoomHeight = 2 .Root.Image = 0 With .Nodes .Add("Child <b>1</b>",Nothing,"1234") .Add("Sub 1","1234") .Add("Sub 2","1234") .Add("Sub 3","1234") .Add("Child <b>2</b>") End With End With |
62 |
How do I avoid slow moving the chart when the user selects a new node
With AxChartView1 .ScrollByClick = False End With |
61 |
How do I ensure that a node is visible or fits the chart's area
|
60 |
How do I change the root node, so it explore from a specified node
|
59 |
How do I select a node
With AxChartView1 .Root.Image = 0 With .Nodes .Add("Child <b>1</b>",Nothing,"1234") .Add("Child <b>2</b>") End With .SelectNode = "1234" .HideSelection = False End With |
57 |
How do I fix the height for all nodes
|
56 |
How do I fix the width for all nodes
|
55 |
How do I change the style of the link between nodes
|
54 |
How do I change the color to link the nodes
With AxChartView1 .LinkColor = RGB(255,0,0) With .Nodes .Add("Child <b>1</b>") .Add("Child <b>2</b>") End With End With |
53 |
How do I change the shape for selected node, using your EBN files
With AxChartView1 .VisualAppearance.Add(2,"c:\exontrol\images\pushed.ebn") .GetOcx().SelColor = &H2000000 .SelectNode = "root" .HideSelection = False With .Nodes .Add("Child <b>1</b>") .Add("Child <b>2</b>") End With End With |
52 |
How do I change the color for selected node
With AxChartView1 .SelColor = RGB(0,0,255) .SelectNode = "root" .HideSelection = False With .Nodes .Add("Child <b>1</b>") .Add("Child <b>2</b>") End With End With |
51 |
How do I hide the node's shadow
With AxChartView1 .ShadowNode = False End With |
50 |
How do I change the pen to draw the border for all nodes
|
49 |
How do I change the shape of the border for all nodes
With AxChartView1 .VisualAppearance.Add(2,"c:\exontrol\images\pushed.ebn") .set_Background(EXORGCHARTLib.BackgroundPartEnum.exNodeFrame,33554432) End With |
48 |
How do I change the shape of the border for all nodes
With AxChartView1 .DrawRoundNode = False End With |
47 |
How do I change the foreground color for all nodes
With AxChartView1 .ForeColorNode = RGB(255,0,0) With .Nodes .Add("Child <b>1</b>") .Add("Child <b>2</b>") End With End With |
46 |
How do I change the background color for all nodes
With AxChartView1 .BackColorNode = RGB(255,0,0) With .Nodes .Add("Child <b>1</b>") .Add("Child <b>2</b>") End With End With |
45 |
How do I change the key of the root
|
44 |
How do I change the caption of the root
|
43 |
How do I access the root node
|
42 |
How do I access the nodes collection
|
41 |
How do I refresh the control
|
40 |
How do I prevent painting while several changes are performed
With AxChartView1 .BeginUpdate() .Nodes.Add("Child <b>1</b>") .Nodes.Add("Child <b>2</b>") .EndUpdate() End With |
39 |
How do I indent the full chart to the right
With AxChartView1 .BorderWidth = 8 .BorderHeight = 8 End With |
38 |
How can I change the node's border/frame, using your EBN files
With AxChartView1 .VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") .set_Background(EXORGCHARTLib.BackgroundPartEnum.exNodeFrame,16777216) .Nodes.Add("Child <b>1</b>") .Nodes.Add("Child <b>2</b>") End With |
37 |
How can still display the selected node when the control loses the focus
With AxChartView1 .HideSelection = False End With |
36 |
How do I disable or enable the control
With AxChartView1 .Enabled = False End With |
35 |
How do I change the visual aspect for thumb parts in the scroll bars, using EBN
With AxChartView1 .VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") .VisualAppearance.Add(2,"c:\exontrol\images\pushed.ebn") .VisualAppearance.Add(3,"c:\exontrol\images\hot.ebn") .set_Background(EXORGCHARTLib.BackgroundPartEnum.exHSThumb,16777216) .set_Background(EXORGCHARTLib.BackgroundPartEnum.exHSThumbP,33554432) .set_Background(EXORGCHARTLib.BackgroundPartEnum.exHSThumbH,50331648) .set_Background(EXORGCHARTLib.BackgroundPartEnum.exVSThumb,16777216) .set_Background(EXORGCHARTLib.BackgroundPartEnum.exVSThumbP,33554432) .set_Background(EXORGCHARTLib.BackgroundPartEnum.exVSThumbH,50331648) .FixedWidthNode = 320 End With |
34 |
How do I change the visual aspect only for the thumb in the scroll bar, using EBN
With AxChartView1 .VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") .VisualAppearance.Add(2,"c:\exontrol\images\pushed.ebn") .VisualAppearance.Add(3,"c:\exontrol\images\hot.ebn") .set_Background(EXORGCHARTLib.BackgroundPartEnum.exHSThumb,16777216) .set_Background(EXORGCHARTLib.BackgroundPartEnum.exHSThumbP,33554432) .set_Background(EXORGCHARTLib.BackgroundPartEnum.exHSThumbH,50331648) .set_ScrollThumbSize(EXORGCHARTLib.ScrollBarEnum.exHScroll,96) .FixedWidthNode = 320 End With |
33 |
I've seen that you can change the visual appearance for the scroll bar. How can I do that
With AxChartView1 .VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") .VisualAppearance.Add(2,"c:\exontrol\images\pushed.ebn") .VisualAppearance.Add(3,"c:\exontrol\images\hot.ebn") .set_Background(EXORGCHARTLib.BackgroundPartEnum.exSBtn,16777216) .set_Background(EXORGCHARTLib.BackgroundPartEnum.exSBtnP,33554432) .set_Background(EXORGCHARTLib.BackgroundPartEnum.exSBtnH,50331648) .set_Background(EXORGCHARTLib.BackgroundPartEnum.exHSBack,15790320) .set_Background(EXORGCHARTLib.BackgroundPartEnum.exVSBack,15790320) .set_Background(EXORGCHARTLib.BackgroundPartEnum.exSizeGrip,15790320) .FixedWidthNode = 320 End With |
32 |
Can I change the forecolor for the tooltip
With AxChartView1 .ToolTipDelay = 1 .ToolTipWidth = 364 .set_Background(EXORGCHARTLib.BackgroundPartEnum.exToolTipForeColor,255) .Root.ToolTip = "This is a bit of text that's shown when the cursor hovers the node." End With |
31 |
Can I change the background color for the tooltip
With AxChartView1 .ToolTipDelay = 1 .ToolTipWidth = 364 .set_Background(EXORGCHARTLib.BackgroundPartEnum.exToolTipBackColor,255) .Root.ToolTip = "This is a bit of text that's shown when the cursor hovers the node." End With |
30 |
Can I change the default border of the tooltip, using your EBN files
With AxChartView1 .ToolTipDelay = 1 .ToolTipWidth = 364 .VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") .set_Background(EXORGCHARTLib.BackgroundPartEnum.exToolTipAppearance,16777216) .Root.ToolTip = "This is a bit of text that's shown when the cursor hovers the node." End With |
29 |
How do I call your x-script language
|
28 |
How do I call your x-script language
|
27 |
Can I change the font for the tooltip
With AxChartView1 .ToolTipDelay = 1 With .ToolTipFont .Name = "Tahoma" .Size = 14 End With .ToolTipWidth = 364 .Root.ToolTip = "This is a bit of text that's shown when the cursor hovers the node." End With |
26 |
I've seen that the width of the tooltip is variable. Can I make it larger
With AxChartView1 .ToolTipWidth = 328 .Root.ToolTip = "This is a bit of text that's shown when the cursor hovers the node." End With |
25 |
How do I let the tooltip being displayed longer
With AxChartView1 .ToolTipPopDelay = 10000 .Root.ToolTip = "This is a bit of text that's shown when the cursor hovers the node." End With |
24 |
How do I disable showing the tooltip for all control
With AxChartView1 .ToolTipDelay = 0 .Root.ToolTip = "This is a bit of text that's shown when the cursor hovers the node." End With |
23 |
How do I show the tooltip quicker
With AxChartView1 .ToolTipDelay = 1 .Root.ToolTip = "This is a bit of text that's shown when the cursor hovers the node." End With |
22 |
Can I change the order of the buttons in the scroll bar
With AxChartView1 .set_ScrollOrderParts(EXORGCHARTLib.ScrollBarEnum.exHScroll,"t,l,r") .set_ScrollOrderParts(EXORGCHARTLib.ScrollBarEnum.exVScroll,"t,l,r") .FixedWidthNode = 320 End With |
21 |
The thumb size seems to be very small. Can I make it bigger
|
20 |
How do I enlarge or change the size of the control's scrollbars
With AxChartView1 .ScrollHeight = 18 .ScrollWidth = 18 .ScrollButtonWidth = 18 .ScrollButtonHeight = 18 .FixedWidthNode = 320 .FixedHeightNode = 320 End With |
19 |
How can I display my text on the scroll bar, using a different font
With AxChartView1 .set_ScrollPartCaption(EXORGCHARTLib.ScrollBarEnum.exHScroll,EXORGCHARTLib.ScrollPartEnum.exThumbPart,"This is just a text") .get_ScrollFont(EXORGCHARTLib.ScrollBarEnum.exHScroll).Size = 12 .set_ScrollThumbSize(EXORGCHARTLib.ScrollBarEnum.exHScroll,128) .ScrollHeight = 24 .set_ScrollPartCaption(EXORGCHARTLib.ScrollBarEnum.exHScroll,EXORGCHARTLib.ScrollPartEnum.exThumbPart,"This is <s><font Tahoma;12> just </font></s> text") .ScrollHeight = 20 .FixedWidthNode = 320 End With |
18 |
How can I display my text on the scroll bar
With AxChartView1 .set_ScrollPartCaption(EXORGCHARTLib.ScrollBarEnum.exHScroll,EXORGCHARTLib.ScrollPartEnum.exThumbPart,"this is just a text") .set_ScrollThumbSize(EXORGCHARTLib.ScrollBarEnum.exHScroll,96) .FixedWidthNode = 320 End With |
17 |
How do I assign a tooltip to a scrollbar
|
16 |
How do I assign an icon to the button in the scrollbar
With AxChartView1 .Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" & _ "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" & _ "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" & _ "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=") .set_ScrollPartVisible(EXORGCHARTLib.ScrollBarEnum.exHScroll,EXORGCHARTLib.ScrollPartEnum.exLeftB1Part,True) .set_ScrollPartCaption(EXORGCHARTLib.ScrollBarEnum.exHScroll,EXORGCHARTLib.ScrollPartEnum.exLeftB1Part,"<img>1</img>") .ScrollHeight = 18 .ScrollButtonWidth = 18 .FixedWidthNode = 320 End With |
15 |
I need to add a button in the scroll bar. Is this possible
With AxChartView1 .set_ScrollPartVisible(EXORGCHARTLib.ScrollBarEnum.exHScroll,EXORGCHARTLib.ScrollPartEnum.exLeftB1Part,True) .set_ScrollPartCaption(EXORGCHARTLib.ScrollBarEnum.exHScroll,EXORGCHARTLib.ScrollPartEnum.exLeftB1Part,"1") .FixedWidthNode = 320 End With |
14 |
Can I display an additional buttons in the scroll bar
With AxChartView1 .set_ScrollPartVisible(EXORGCHARTLib.ScrollBarEnum.exHScroll,EXORGCHARTLib.ScrollPartEnum.exLeftB1Part,True) .set_ScrollPartVisible(EXORGCHARTLib.ScrollBarEnum.exHScroll,EXORGCHARTLib.ScrollPartEnum.exLeftB2Part,True) .set_ScrollPartVisible(EXORGCHARTLib.ScrollBarEnum.exHScroll,EXORGCHARTLib.ScrollPartEnum.exRightB6Part,True) .set_ScrollPartVisible(EXORGCHARTLib.ScrollBarEnum.exHScroll,EXORGCHARTLib.ScrollPartEnum.exRightB5Part,True) .FixedWidthNode = 320 End With |
13 |
How do I change the control's foreground color
With AxChartView1 .ForeColor = RGB(255,0,0) End With |
12 |
How do I change the control's background color
With AxChartView1 .BackColor = RGB(200,200,200) End With |
11 |
How can I change the control's font
|
10 |
How do I put a picture on the center of the control
With AxChartView1 .Picture = AxChartView1.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)") .PictureDisplay = EXORGCHARTLib.PictureDisplayEnum.MiddleCenter End With |
9 |
How do I resize/stretch a picture on the control's background
With AxChartView1 .Picture = AxChartView1.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)") .PictureDisplay = EXORGCHARTLib.PictureDisplayEnum.Stretch End With |
8 |
How do I put a picture on the control's center right bottom side
With AxChartView1 .Picture = AxChartView1.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)") .PictureDisplay = EXORGCHARTLib.PictureDisplayEnum.LowerRight End With |
7 |
How do I put a picture on the control's center left bottom side
With AxChartView1 .Picture = AxChartView1.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)") .PictureDisplay = EXORGCHARTLib.PictureDisplayEnum.LowerLeft End With |
6 |
How do I put a picture on the control's center top side
With AxChartView1 .Picture = AxChartView1.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)") .PictureDisplay = EXORGCHARTLib.PictureDisplayEnum.UpperCenter End With |
5 |
How do I put a picture on the control's right top corner
With AxChartView1 .Picture = AxChartView1.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)") .PictureDisplay = EXORGCHARTLib.PictureDisplayEnum.UpperRight End With |
4 |
How do I put a picture on the control's left top corner
With AxChartView1 .Picture = AxChartView1.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)") .PictureDisplay = EXORGCHARTLib.PictureDisplayEnum.UpperLeft End With |
3 |
How do I put a picture on the control's background
|
2 |
How do I change the control's border, using your EBN files
With AxChartView1 .VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") .Appearance = &H1000000 End With |
1 |
How do I remove the control's border
|